info static method

dynamic info({
  1. required String msg,
})

Implementation

static info({required String msg}) {
  if (kDebugMode) {
    showLogs == true ? print('LeanSDK: $msg') : null;
  }
}