EasyTextList.fromJsonList constructor

EasyTextList.fromJsonList(
  1. Iterable<Map<String, dynamic>> elements
)

Implementation

EasyTextList.fromJsonList(Iterable<Map<String, dynamic>> elements) {
  for (final Map<String, dynamic> el in elements) {
    add(EasyText.fromJson(el));
  }
}