fromJson static method

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

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

Implementation

static Contribution? 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 Contribution(
    embedded: CheckpointEmbedded.fromJson(json[r'_embedded']),
    links: ContributionLinks.fromJson(json[r'_links']),
    createdAt: createdAt,
    id: json[r'id'],
    type: json[r'type'],
    updatedAt: updatedAt,
  );
}