copyWith method
Implementation
MessageId copyWith({
bool? fromMe,
String? remote,
String? id,
String? serialized,
}) {
return MessageId(
fromMe: fromMe ?? this.fromMe,
remote: remote ?? this.remote,
id: id ?? this.id,
serialized: serialized ?? this.serialized,
);
}