mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 21:35:32 +00:00
10 lines
345 B
Dart
10 lines
345 B
Dart
import 'package:mangayomi/eval/lib.dart';
|
|
import 'package:mangayomi/eval/model/source_preference.dart';
|
|
import 'package:mangayomi/models/source.dart';
|
|
|
|
List<SourcePreference> getSourcePreference({
|
|
required Source source,
|
|
String androidProxyServer = "",
|
|
}) {
|
|
return getExtensionService(source, androidProxyServer).getSourcePreferences();
|
|
}
|