copyWith method

QrcodeKeyEntity copyWith({
  1. int? code,
  2. String? unikey,
})

Implementation

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