copyWith method

PaywayPartnerCheckMerchant copyWith({
  1. String? register_ref,
})

Implementation

PaywayPartnerCheckMerchant copyWith({
  String? register_ref,
}) {
  return PaywayPartnerCheckMerchant(
    register_ref: register_ref ?? this.register_ref,
  );
}