contentIsList static method

bool contentIsList(
  1. Map<String, dynamic> json
)
override

Returns true if a json field is a list.

Implementation

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