12 lines
243 B
Dart
12 lines
243 B
Dart
|
import 'dart:ffi';
|
||
|
|
||
|
class CardData {
|
||
|
final String name;
|
||
|
final String image;
|
||
|
final int year_streams;
|
||
|
final String? id;
|
||
|
|
||
|
const CardData(
|
||
|
{required this.id, required this.name, required this.image, required this.year_streams});
|
||
|
}
|