isList method

  1. @protected
bool isList(
  1. DartObject o
)

Returns whether an object represents a constant List.

Implementation

@protected
bool isList(DartObject o) => o.toListValue() != null;