copyWith method
Implementation
MessageAutoDeleteTime copyWith({
int? time,
dynamic extra,
int? clientId,
}) =>
MessageAutoDeleteTime(
time: time ?? this.time,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);