Info constructor

  1. @JsonSerializable(includeIfNull: false)
const Info({
  1. @Default('com.atproto.label.subscribeLabels#info') String $type,
  2. @InfoNameConverter() required InfoName name,
  3. String? message,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory Info({
  @Default('com.atproto.label.subscribeLabels#info') String $type,
  @InfoNameConverter() required InfoName name,
  String? message,

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