getJSONArray method
Implementation
List<dynamic>? getJSONArray() {
final json = _json;
if (type != AttributesType.ARRAY || json == null) {
return null;
} else {
return List<dynamic>.from(jsonDecode(json));
}
}
List<dynamic>? getJSONArray() {
final json = _json;
if (type != AttributesType.ARRAY || json == null) {
return null;
} else {
return List<dynamic>.from(jsonDecode(json));
}
}