contentIsList static method

bool contentIsList(
  1. Map<String, dynamic> json,
  2. PropertiesTypes type
)

Check if the specific json have a content list.

Implementation

static bool contentIsList(Map<String, dynamic> json, PropertiesTypes type) =>
    fieldIsList(json[propertyTypeToString(type)]);