BeaFilesManager constructor

BeaFilesManager(
  1. BeaServiceManager? bsm
)

Implementation

BeaFilesManager(this.bsm){
  try{
    if(bsm == null){
      throw new Exception("${this.runtimeType.toString()} not initialized");
    }

    _baseUrl = bsm!.getBaseUrl();
    storage = bsm!.getBeaStorage();
  }on Exception catch (e){
    print('Initialization ${this.runtimeType.toString()} error');
    FLog.error(
        className: this.runtimeType.toString(),
        methodName: "Costructor",
        text: 'Initialization ${this.runtimeType.toString()} error - $e');
    throw e;
  }
}