setLinearConveyingBufferOffset method

Future<void> setLinearConveyingBufferOffset(
  1. double offset
)

Set linear conveying buffers width in meters

set MapOptions.linearConveyingBufferOffset value, even after WemapMap widget being initialised

Implementation

Future<void> setLinearConveyingBufferOffset(double offset) async {
  await _channel
      .invokeMethod('setLinearConveyingBufferOffset', {"offset": offset});
}