copyWith method
MessageForwardInfo
copyWith({
- MessageOrigin? origin,
- int? date,
- ForwardSource? source,
- String? publicServiceAnnouncementType,
Implementation
MessageForwardInfo copyWith({
MessageOrigin? origin,
int? date,
ForwardSource? source,
String? publicServiceAnnouncementType,
}) => MessageForwardInfo(
origin: origin ?? this.origin,
date: date ?? this.date,
source: source ?? this.source,
publicServiceAnnouncementType:
publicServiceAnnouncementType ?? this.publicServiceAnnouncementType,
);