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