fromJson static method

PostPublicationsInput? fromJson(
  1. dynamic value
)

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

Implementation

// ignore: prefer_constructors_over_static_methods
static PostPublicationsInput? 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 "PostPublicationsInput[post_id]" is missing from JSON.');
      assert(json[r'post_id'] != null, 'Required key "PostPublicationsInput[post_id]" has a null value in JSON.');
      assert(json.containsKey(r'company_id'), 'Required key "PostPublicationsInput[company_id]" is missing from JSON.');
      assert(json[r'company_id'] != null, 'Required key "PostPublicationsInput[company_id]" has a null value in JSON.');
      assert(json.containsKey(r'platform'), 'Required key "PostPublicationsInput[platform]" is missing from JSON.');
      assert(json[r'platform'] != null, 'Required key "PostPublicationsInput[platform]" has a null value in JSON.');
      return true;
    }());

    return PostPublicationsInput(
      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;
}