ProductStatus.fromJson constructor

ProductStatus.fromJson(
  1. dynamic json
)

Implementation

ProductStatus.fromJson(dynamic json) {
  id = json['id'];
  label = json['label'];
  color = json['color'];
  display = json['display'];
}