14 lines
207 B
Dart
14 lines
207 B
Dart
import 'package:test_app/domain/card.dart';
|
|
|
|
class HomeData {
|
|
final List<CardData>? data;
|
|
int? currentPage;
|
|
int? nextPage;
|
|
|
|
HomeData({
|
|
this.data,
|
|
this.currentPage,
|
|
this.nextPage,
|
|
});
|
|
}
|