14 lines
731 B
Dart
14 lines
731 B
Dart
|
import 'package:flutter_app/data/repositories/api_interface.dart';
|
|||
|
import 'package:flutter_app/domain/models/carddata.dart';
|
|||
|
|
|||
|
class MockRepository extends ApiInterface {
|
|||
|
@override
|
|||
|
Future<List<CardData>?> loadData() async {
|
|||
|
return [
|
|||
|
CardData('JoJo’s Bizarre Adventure', descriptionText: 'kono dio da', imageUrl: 'https://i1.sndcdn.com/avatars-253MmMf9QZzxVBJi-rvlyeg-t1080x1080.jpg'),
|
|||
|
CardData('Example', descriptionText: 'what is this?', imageUrl: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvaBQ6nAedlqvXsh-dLXZi2Gexy1RkDbTUKQ&s'),
|
|||
|
CardData('Mock data', descriptionText: 'Mock data description', imageUrl: 'https://cdn-user30887.skyeng.ru/uploads/6692a339c6989979804399.png'),
|
|||
|
];
|
|||
|
}
|
|||
|
|
|||
|
}
|