CrmRepo constructor

CrmRepo([
  1. AppApi? api
])

Implementation

factory CrmRepo([AppApi? api]) {
  _instance ??= CrmRepo._();
  _instance!._api = api ?? AppApiImp();
  return _instance!;
}