toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"status": status,
"tracePlate": tracePlate,
"items": items == null ? <dynamic>[] : List<dynamic>.from(items!.map((ULicencePlateHistoryItem x) => x.toMap())),
"isCached": isCached,
"cachedAt": cachedAt?.toIso8601String(),
"cacheExpiresAt": cacheExpiresAt?.toIso8601String(),
};