SearchAccountsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const SearchAccountsOutput({
  1. String? cursor,
  2. @AccountViewConverter() required List<AccountView> accounts,
  3. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SearchAccountsOutput({
  String? cursor,
  @AccountViewConverter() required List<AccountView> accounts,

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