fromJson static method

EnrichedActivity? fromJson(
  1. dynamic value
)

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

Implementation

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

    return EnrichedActivity(
      actor: Data.fromJson(json[r'actor']),
      foreignId: mapValueOfType<String>(json, r'foreign_id'),
      id: mapValueOfType<String>(json, r'id'),
      latestReactions: json[r'latest_reactions'] == null
        ? const {}
          : EnrichedReaction.mapListFromJson(json[r'latest_reactions']),
      object: Data.fromJson(json[r'object']),
      origin: Data.fromJson(json[r'origin']),
      ownReactions: json[r'own_reactions'] == null
        ? const {}
          : EnrichedReaction.mapListFromJson(json[r'own_reactions']),
      reactionCounts: mapCastOfType<String, int>(json, r'reaction_counts') ?? const {},
      score: mapValueOfType<double>(json, r'score'),
      target: Data.fromJson(json[r'target']),
      time: mapValueOfType<Object>(json, r'time'),
      to: json[r'to'] is Iterable
          ? (json[r'to'] as Iterable).cast<String>().toList(growable: false)
          : const [],
      verb: mapValueOfType<String>(json, r'verb'),
    );
  }
  return null;
}