copyWith method
Implementation
SearchAssetRes copyWith(
{List<Asset>? entities,
bool? ok,
String? msg,
int? page,
int? size,
int? total}) {
return SearchAssetRes(
entities: entities ?? this.entities,
ok: ok ?? this.ok,
msg: msg ?? this.msg,
page: page ?? this.page,
size: size ?? this.size,
total: total ?? this.total);
}