getDecibel method

Future<double?> getDecibel()

platform call to get decibel

Implementation

Future<double?> getDecibel() async {
  var db = await _methodChannel.invokeMethod(Constants.getDecibel);
  return db;
}