copyWith method
Implementation
BaseListRes copyWith(
{int? page, int? size, int? total, bool? ok, String? msg}) {
return BaseListRes(
page: page ?? this.page,
size: size ?? this.size,
total: total ?? this.total,
ok: ok ?? this.ok,
msg: msg ?? this.msg);
}