PriceLevel.fromJson constructor

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

Implementation

factory PriceLevel.fromJson(Map<String, dynamic> json) {
  return PriceLevel(
    price: json['price'],
    size: json['size'],
  );
}