PatchCodeParams.fromJson constructor

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

Creates a PatchCodeParams instance from a JSON representation.

Implementation

PatchCodeParams.fromJson(Map<String, dynamic> json) {
  extraBarcodeText = json['extraBarcodeText'];
  patchFormat = PatchFormat.fromJson(json['patchFormat']);
}