getNextSpeedLimitVariation method
- int checkDistance = 2147483647,
Get the next speed limit variation.
Parameters
- IN checkDistance The speed limit variation search distance.
Returns
- The NextSpeedLimit object. Check the NextSpeedLimit.status to check the availability of the result.
Throws
- An exception if it fails.
Implementation
NextSpeedLimit getNextSpeedLimitVariation(
{final int checkDistance = 2147483647}) {
final OperationResult resultString = objectMethod(
_pointerId,
'NavigationInstruction',
'getNextSpeedLimitVariation',
args: checkDistance,
);
return NextSpeedLimit.fromJson(resultString['result']);
}