indicesWithValues property

  1. @override
List<int> indicesWithValues

The indices where data is present.

Implementation

@override
List<int> get indicesWithValues => [
      for (var i = 0; i < length; i++)
        if (!this[i].isNaN) i
    ];