BeaServiceManager constructor

BeaServiceManager(
  1. BeaFlutterPackage bfp,
  2. String _baseUrl
)

Implementation

BeaServiceManager(BeaFlutterPackage bfp, this._baseUrl){
    try{
      _beaFlutterPackage = bfp;
      _beaNetworkManager = _beaFlutterPackage!.getBeaNetworkManager();
    }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;
    }
}