copyWith method

  1. @override
ChatSourcePublicServiceAnnouncement copyWith({
  1. String? type,
  2. String? text,
})
override

Implementation

@override
ChatSourcePublicServiceAnnouncement copyWith({
  String? type,
  String? text,
}) =>
    ChatSourcePublicServiceAnnouncement(
      type: type ?? this.type,
      text: text ?? this.text,
    );