GooglePlaceRepo constructor

GooglePlaceRepo([
  1. MyAppApi? api
])

Implementation

factory GooglePlaceRepo([MyAppApi? api]) {
  _instance ??= GooglePlaceRepo._();
  _instance!._api = api ?? MyAppApiImp();
  return _instance!;
}