copyWith method
Implementation
@override
MessageFileTypeGroup copyWith({
String? title,
dynamic extra,
int? clientId,
}) =>
MessageFileTypeGroup(
title: title ?? this.title,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);