toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (embedded != null) r'_embedded': embedded,
    if (links != null) r'_links': links,
    if (createdAt != null) r'createdAt': createdAt!.toUtc().toIso8601String(),
    if (id != null) r'id': id,
    if (identificationNumber != null)
      r'identificationNumber': identificationNumber,
    r'name': name,
    if (type != null) r'type': type,
    if (updatedAt != null) r'updatedAt': updatedAt!.toUtc().toIso8601String(),
  };
}