CopyProductOutput.fromJson constructor

CopyProductOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CopyProductOutput.fromJson(Map<String, dynamic> json) {
  return CopyProductOutput(
    copyProductToken: json['CopyProductToken'] as String?,
  );
}