printDebugMessage static method

void printDebugMessage(
  1. String? msg,
  2. int msgDebugLevel
)

Implementation

static void printDebugMessage(String? msg, int msgDebugLevel) {
  if (_debugLevel >= msgDebugLevel) {
    print('beacons_plugin: $msg');
  }
}