isMapList method

bool isMapList({
  1. bool includeNullValues = false,
})

Returns true if this decoded value represents a list of maps.

If includeNullValues is set to true, null values are also taken into account.

Implementation

bool isMapList({bool includeNullValues = false}) =>
    checkMapList(value, includeNullValues);