copyWith method

SetProfilePhoto copyWith({
  1. InputChatPhoto? photo,
  2. bool? isPublic,
})

Implementation

SetProfilePhoto copyWith({
  InputChatPhoto? photo,
  bool? isPublic,
}) =>
    SetProfilePhoto(
      photo: photo ?? this.photo,
      isPublic: isPublic ?? this.isPublic,
    );