copyWith method

CreateBasicGroupChat copyWith({
  1. int? basicGroupId,
  2. bool? force,
})

Implementation

CreateBasicGroupChat copyWith({int? basicGroupId, bool? force}) =>
    CreateBasicGroupChat(
      basicGroupId: basicGroupId ?? this.basicGroupId,
      force: force ?? this.force,
    );