SystemMessageDataEditGroup constructor
- @JsonSerializable.new(includeIfNull: false)
const
SystemMessageDataEditGroup(
{ - @Default.new('chat.bsky.convo.defs#systemMessageDataEditGroup') String $type,
- String? oldName,
- String? newName,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory SystemMessageDataEditGroup({
@Default('chat.bsky.convo.defs#systemMessageDataEditGroup') String $type,
/// Group name that was replaced.
String? oldName,
/// Group name that replaced the old.
String? newName,
Map<String, dynamic>? $unknown,
}) = _SystemMessageDataEditGroup;