SortInfo.fromJson constructor

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

Implementation

factory SortInfo.fromJson(Map<String, dynamic> json) {
  return SortInfo(json['id'], json['code'], json['label']);
}