copyWith method

  1. @override
MessageSupergroupChatCreate copyWith({
  1. String? title,
})
override

Implementation

@override
MessageSupergroupChatCreate copyWith({
  String? title,
}) =>
    MessageSupergroupChatCreate(
      title: title ?? this.title,
    );