MaterialList.fromJson constructor

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

Implementation

factory MaterialList.fromJson(Map<String, dynamic> json) => MaterialList(
  type: json["type"],
  content: json["content"],
);