Attribute.fromJson constructor

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

Implementation

Attribute.fromJson(Map<String, dynamic> json) {
  fieldName = json['fieldName'];
  fieldValue = json['fieldValue'];
  colorCode = json['colorCode'];
  sTypename = json['__typename'];
}