GetRelationshipsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const GetRelationshipsOutput({
  1. String? actor,
  2. @UGetRelationshipsRelationshipConverter() required List<UGetRelationshipsRelationship> relationships,
  3. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GetRelationshipsOutput({
  String? actor,
  @UGetRelationshipsRelationshipConverter()
  required List<UGetRelationshipsRelationship> relationships,

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _GetRelationshipsOutput;