fromJson static method

Session? fromJson(
  1. dynamic value
)

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

Implementation

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

    return Session(
      object: SessionObjectEnum.fromJson(json[r'object'])!,
      id: mapValueOfType<String>(json, r'id')!,
      userId: mapValueOfType<String>(json, r'user_id')!,
      clientId: mapValueOfType<String>(json, r'client_id')!,
      actor: mapValueOfType<Object>(json, r'actor'),
      status: SessionStatusEnum.fromJson(json[r'status'])!,
      lastActiveOrganizationId:
          mapValueOfType<String>(json, r'last_active_organization_id'),
      lastActiveAt: mapValueOfType<int>(json, r'last_active_at')!,
      latestActivity:
          SessionActivityResponse.fromJson(json[r'latest_activity']),
      expireAt: mapValueOfType<int>(json, r'expire_at')!,
      abandonAt: mapValueOfType<int>(json, r'abandon_at')!,
      updatedAt: mapValueOfType<int>(json, r'updated_at')!,
      createdAt: mapValueOfType<int>(json, r'created_at')!,
    );
  }
  return null;
}