ready method

Future<SBGLState> ready()

Initialize plugin for prepare requestPositionUpdate

Before call requestPositionUpdate must call ready() to get current plugin state. In android when user use back button quit app, flutter will shutdown all dart code. use ready() notify plugin and check whether the last position update is sill tracking, and get positions updates in plugin cache.

No position updated event will send if miss called ready()

Implementation

Future<SBGLState> ready() {
  throw UnimplementedError('getPositionStream() has not been implemented.');
}