GetUnreadCountOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const GetUnreadCountOutput({
  1. required int count,
  2. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GetUnreadCountOutput({
  required int count,

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