find method

int find(
  1. String name
)

Find a bookmarked route by its name.

Parameters

  • name: The unique name of the route to find.

Returns

Implementation

int find(final String name) {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteBookmarks',
    'find',
    args: name,
  );

  return resultString['result'];
}