getJSONArray method

List? getJSONArray()

Implementation

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