GeneratorParamsList.fromJson constructor

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

Creates a GeneratorParamsList instance from a JSON representation.

Implementation

GeneratorParamsList.fromJson(Map<String, dynamic> json) {
  barcodeBuilders = GeneratorParams.listFromJson(json['barcodeBuilders']);
  xStep = json['xStep'];
  yStep = json['yStep'];
}