copyWith method

CheckAuthenticationWebToken copyWith({
  1. String? token,
  2. int? dcId,
})

Implementation

CheckAuthenticationWebToken copyWith({String? token, int? dcId}) =>
    CheckAuthenticationWebToken(
      token: token ?? this.token,
      dcId: dcId ?? this.dcId,
    );