GraphGetRelationshipsInput constructor

  1. @JsonSerializable(includeIfNull: false)
const GraphGetRelationshipsInput({
  1. required String actor,
  2. List<String>? others,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GraphGetRelationshipsInput({
  /// Primary account requesting relationships for.
  required String actor,
  List<String>? others,

  Map<String, dynamic>? $unknown,
}) = _GraphGetRelationshipsInput;