getInnerSizeAt method

double getInnerSizeAt(
  1. int index
)

Get the inner size for the path specified by index.

If the result is -1, then the index does not exist in the collection.

Parameters

  • IN index The path index

Returns

  • The inner size

Implementation

double getInnerSizeAt(final int index) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPathCollection',
    'getInnerSizeAt',
    args: index,
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}