BeaNetworkManager constructor

BeaNetworkManager()

Implementation

BeaNetworkManager(){
  try{
    _connectivity = new Connectivity();
  }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;
  }
}