copyWith method
PointOfSalesCreateRequest
copyWith({
- String? signToken,
- String? website,
- String? address,
- PointOfSalesType? type,
- String? alias,
- String? phone,
- String? mail,
- String? name,
override
Создает экземпляр с заданными параметрами
Implementation
@override
PointOfSalesCreateRequest copyWith({
String? signToken,
String? website,
String? address,
PointOfSalesType? type,
String? alias,
String? phone,
String? mail,
String? name,
}) {
return PointOfSalesCreateRequest(
signToken: signToken ?? this.signToken,
name: name ?? this.name,
mail: mail ?? this.mail,
address: address ?? this.address,
type: type ?? this.type,
website: website ?? this.website,
phone: phone ?? this.phone,
alias: alias ?? this.alias,
);
}