indicesWithMissingValues property

  1. @override
List<int> indicesWithMissingValues

The indices where data is missing.

Implementation

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