fromJson static method

PostPublications? fromJson(
  1. dynamic value
)

Returns a new PostPublications instance and imports its values from value if it's a Map, null otherwise.

Implementation

// ignore: prefer_constructors_over_static_methods
static PostPublications? fromJson(dynamic value) {
  if (value is Map) {
    final json = value.cast<String, dynamic>();

    // Ensure that the map contains the required keys.
    // Note 1: the values aren't checked for validity beyond being non-null.
    // Note 2: this code is stripped in release mode!
    assert(() {
      assert(json.containsKey(r'post_id'), 'Required key "PostPublications[post_id]" is missing from JSON.');
      assert(json[r'post_id'] != null, 'Required key "PostPublications[post_id]" has a null value in JSON.');
      assert(json.containsKey(r'company_id'), 'Required key "PostPublications[company_id]" is missing from JSON.');
      assert(json[r'company_id'] != null, 'Required key "PostPublications[company_id]" has a null value in JSON.');
      assert(json.containsKey(r'platform'), 'Required key "PostPublications[platform]" is missing from JSON.');
      assert(json[r'platform'] != null, 'Required key "PostPublications[platform]" has a null value in JSON.');
      assert(json.containsKey(r'status'), 'Required key "PostPublications[status]" is missing from JSON.');
      assert(json[r'status'] != null, 'Required key "PostPublications[status]" has a null value in JSON.');
      return true;
    }());

    return PostPublications(
      dateCreated: mapDateTime(json, r'date_created', r''),
      lastUpdated: mapDateTime(json, r'last_updated', r''),
      publicationId: mapValueOfType<String>(json, r'publication_id'),
      postId: mapValueOfType<String>(json, r'post_id')!,
      companyId: mapValueOfType<String>(json, r'company_id')!,
      integrationId: mapValueOfType<String>(json, r'integration_id'),
      platform: mapValueOfType<String>(json, r'platform')!,
      externalPostId: mapValueOfType<String>(json, r'external_post_id'),
      externalPostUrl: mapValueOfType<String>(json, r'external_post_url'),
      publishedAt: mapDateTime(json, r'published_at', r''),
      status: mapValueOfType<String>(json, r'status')!,
      errorMessage: mapValueOfType<String>(json, r'error_message'),
    );
  }
  return null;
}