getGoalsIndex method
Future<List<IndexGoals> >
getGoalsIndex({
- required bool enabled,
- required List<
String> tags, - num? page,
- num? limit,
- String? sponsorId,
- bool? trending,
- String? q,
override
Implementation
@override
Future<List<IndexGoals>> getGoalsIndex({
required bool enabled,
required List<String> tags,
num? page,
num? limit,
String? sponsorId,
bool? trending,
String? q,
}) {
return datasource.getGoalsIndex(
enabled: enabled,
tags: tags,
page: page,
limit: limit,
sponsorId: sponsorId,
trending: trending,
q: q,
);
}