instance property

CurlLogs get instance

Implementation

static CurlLogs get instance {
  if (!GetIt.instance.isRegistered<CurlLogs>()) {
    GetIt.instance.registerSingleton<CurlLogs>(CurlLogs());
  }
  return GetIt.instance<CurlLogs>();
}