copyWith method

LoginUrlInfoRequestConfirmation copyWith({
  1. String? url,
  2. String? domain,
  3. int? botUserId,
  4. bool? requestWriteAccess,
})

Implementation

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