copyWith method

  1. @override
LoginUrlInfoRequestConfirmation copyWith({
  1. String? url,
  2. String? domain,
  3. int? botUserId,
  4. bool? requestWriteAccess,
  5. dynamic extra,
  6. int? clientId,
})
override

Implementation

@override
LoginUrlInfoRequestConfirmation copyWith({
  String? url,
  String? domain,
  int? botUserId,
  bool? requestWriteAccess,
  dynamic extra,
  int? clientId,
}) =>
    LoginUrlInfoRequestConfirmation(
      url: url ?? this.url,
      domain: domain ?? this.domain,
      botUserId: botUserId ?? this.botUserId,
      requestWriteAccess: requestWriteAccess ?? this.requestWriteAccess,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );