showErrorByString static method

Future showErrorByString(
  1. String errorMessage, {
  2. String title = 'ERROR',
})

Implementation

static Future showErrorByString(String errorMessage, {String title = 'ERROR'}) async {
  await _showError(errorMessage, title);
}