getPrizes method
Future<List<Reward> >
getPrizes({
- num? page,
- num? limit,
- List<
String> ? tags, - bool? redeemable,
- bool? fitsPoints,
- String? distinctId,
- Map<
String, dynamic> ? sort,
override
Implementation
@override
Future<List<Reward>> getPrizes({
num? page,
num? limit,
List<String>? tags,
bool? redeemable,
bool? fitsPoints,
String? distinctId,
Map<String, dynamic>? sort,
}) {
return datasource.getPrizes(
page: page,
limit: limit,
tags: tags,
redeemable: redeemable,
fitsPoints: fitsPoints,
distinctId: distinctId,
sort: sort,
);
}