getBorderSizeAt method

double getBorderSizeAt(
  1. int index
)

Get the border 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 border size

Implementation

double getBorderSizeAt(final int index) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPathCollection',
    'getBorderSizeAt',
    args: index,
    dependencyId: _mapPointerId,
  );
  return resultString['result'];
}