MatexLotDescriptor.fromJson constructor

MatexLotDescriptor.fromJson(
  1. dynamic json
)

Implementation

factory MatexLotDescriptor.fromJson(dynamic json) {
  return MatexLotDescriptor(
    multiplier: json['multiplier'] as num? ?? _kMultiplier,
    exists: json['exists'] as bool? ?? _kExists,
  );
}