SpecificationList.fromMap constructor
Implementation
factory SpecificationList.fromMap(Map<String, dynamic> map) {
return SpecificationList(
total: map['total'],
specifications: List<Specification>.from(
map['specifications'].map((p) => Specification.fromMap(p))),
);
}