fromJson static method

PostPublicationsUpdate? fromJson(
  1. dynamic value
)

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

Implementation

// ignore: prefer_constructors_over_static_methods
static PostPublicationsUpdate? 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(() {
      return true;
    }());

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