copyWith method
Implementation
UpdateServiceNotification copyWith({String? type, MessageContent? content}) =>
UpdateServiceNotification(
type: type ?? this.type,
content: content ?? this.content,
);
UpdateServiceNotification copyWith({String? type, MessageContent? content}) =>
UpdateServiceNotification(
type: type ?? this.type,
content: content ?? this.content,
);