fromJsArray<T> method
Invoked for List
Implementation
static List<T> fromJsArray<T>(String json) =>
(jsonDecode(json) as List<dynamic>)
.map<T>((dynamic v) => v as T)
.toList();
Invoked for List
static List<T> fromJsArray<T>(String json) =>
(jsonDecode(json) as List<dynamic>)
.map<T>((dynamic v) => v as T)
.toList();