copyWith method

  1. @override
MessageFileTypeGroup copyWith({
  1. String? title,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

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