BarcodePickViewHighlightStyleRequest.fromJSON constructor

BarcodePickViewHighlightStyleRequest.fromJSON(
  1. Map<String, dynamic> json
)

Implementation

factory BarcodePickViewHighlightStyleRequest.fromJSON(Map<String, dynamic> json) {
  return BarcodePickViewHighlightStyleRequest._(
    json['itemData'] as String,
    json['productIdentifier'] as String?,
    BarcodePickStateDeserializer.fromJSON(json['state'] as String),
  );
}