decodeAsList property
List
get
decodeAsList
Implementation
List get decodeAsList {
final root = jsonDecode(this ?? "[]");
if (root is List) return root;
return [];
}
List get decodeAsList {
final root = jsonDecode(this ?? "[]");
if (root is List) return root;
return [];
}