mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 11:51:57 +00:00
22 lines
724 B
Dart
22 lines
724 B
Dart
import 'dart:typed_data';
|
|
|
|
final sources = _Sources._();
|
|
|
|
class _Sources {
|
|
_Sources._();
|
|
|
|
List<String> get platform => network;
|
|
|
|
final List<String> network = [
|
|
'https://user-images.githubusercontent.com/28951144/229373709-603a7a89-2105-4e1b-a5a5-a6c3567c9a59.mp4',
|
|
'https://user-images.githubusercontent.com/28951144/229373716-76da0a4e-225a-44e4-9ee7-3e9006dbc3e3.mp4',
|
|
'https://user-images.githubusercontent.com/28951144/229373718-86ce5e1d-d195-45d5-baa6-ef94041d0b90.mp4',
|
|
'https://user-images.githubusercontent.com/28951144/229373720-14d69157-1a56-4a78-a2f4-d7a134d7c3e9.mp4',
|
|
];
|
|
|
|
final List<String> file = [];
|
|
|
|
final List<Uint8List> bytes = [];
|
|
|
|
Future<void> prepare() => Future.value();
|
|
}
|