ListMissingBlobsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const ListMissingBlobsOutput({
  1. String? cursor,
  2. @RecordBlobConverter() required List<RecordBlob> blobs,
  3. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ListMissingBlobsOutput({
  String? cursor,
  @RecordBlobConverter() required List<RecordBlob> blobs,

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