start method

  1. @override
Future<GeolocationState> start()
override

Implementation

@override
Future<GeolocationState> start() async {
  _methodCalls.add('start');
  _state = _state.copyWith(enabled: true);
  _enabledChangeController.add(true);
  return _state;
}