2022-01-26 01:58:47 +01:00
|
|
|
import 'data_entry.dart';
|
2022-01-26 00:25:07 +01:00
|
|
|
|
|
|
|
class BenkyouArgs {
|
2022-01-26 01:58:47 +01:00
|
|
|
final List<DataEntry> cards;
|
2022-01-26 00:25:07 +01:00
|
|
|
final int? index;
|
|
|
|
|
|
|
|
const BenkyouArgs({required this.cards, this.index});
|
|
|
|
}
|