setUp method Null safety

void setUp(
  1. {String? apiBaseUrl,
  2. String? authBaseUrl}
)

Set up the configuration to use throughout the engine

Implementation

static void setUp({String? apiBaseUrl, String? authBaseUrl}) {
  EngineConfig.apiBaseUrl = apiBaseUrl ?? '';
  EngineConfig.authBaseUrl = authBaseUrl ?? '';
}