fromJson static method

Occupant? fromJson(
  1. Map<String, dynamic>? json
)

Returns a new Occupant instance and imports its values from json if it's non-null, null if json is null.

Implementation

static Occupant? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  DateTime? createdAt =
      json[r'createdAt'] == null ? null : DateTime.parse(json[r'createdAt']);
  if (createdAt != null && createdAt.isUtc == false) {
    createdAt = DateTime.parse('${json[r'createdAt']}Z');
  }

  DateTime? updatedAt =
      json[r'updatedAt'] == null ? null : DateTime.parse(json[r'updatedAt']);
  if (updatedAt != null && updatedAt.isUtc == false) {
    updatedAt = DateTime.parse('${json[r'updatedAt']}Z');
  }

  return Occupant(
    embedded: BookmarkEmbedded.fromJson(json[r'_embedded']),
    links: OccupantLinks.fromJson(json[r'_links']),
    createdAt: createdAt,
    id: json[r'id'],
    type: json[r'type'],
    updatedAt: updatedAt,
  );
}