AuthBindings constructor Null safety
- String authBaseUrl
 
Implementation
AuthBindings(String authBaseUrl)
    : assert(
          authBaseUrl.isNotEmpty,
          'Please ensure that the EngineConfig.authBaseUrl is set '
          'before loading the bindings') {
  EngineConfig.authBaseUrl = authBaseUrl;
}