copyWith method
Implementation
QrcodeKeyEntity copyWith({
int? code,
String? unikey,
}) {
return QrcodeKeyEntity()
..code = code ?? this.code
..unikey = unikey ?? this.unikey;
}
QrcodeKeyEntity copyWith({
int? code,
String? unikey,
}) {
return QrcodeKeyEntity()
..code = code ?? this.code
..unikey = unikey ?? this.unikey;
}