toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"ids": ids == null ? null : List<dynamic>.from(ids!.map((String x) => x)),
"showMedia": showMedia,
"pageSize": pageSize,
"pageNumber": pageNumber,
"orderByCreatedAt": orderByCreatedAt,
"orderByCreatedAtDesc": orderByCreatedAtDesc,
"orderByUpdatedAt": orderByUpdatedAt,
"orderByUpdatedAtDesc": orderByUpdatedAtDesc,
"tags": tags == null ? null : List<dynamic>.from(tags!.map((int x) => x)),
};