Suggestion constructor
- @JsonSerializable(includeIfNull: false)
const
Suggestion(
{ - @Default('com.atproto.temp.checkHandleAvailability#suggestion') String $type,
- required String handle,
- required String method,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory Suggestion({
@Default('com.atproto.temp.checkHandleAvailability#suggestion')
String $type,
required String handle,
/// Method used to build this suggestion. Should be considered opaque to clients. Can be used for metrics.
required String method,
Map<String, dynamic>? $unknown,
}) = _Suggestion;