SystemMessageDataEditGroup constructor

  1. @JsonSerializable.new(includeIfNull: false)
const SystemMessageDataEditGroup({
  1. @Default.new('chat.bsky.convo.defs#systemMessageDataEditGroup') String $type,
  2. String? oldName,
  3. String? newName,
  4. 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;