error method

dynamic error(
  1. BuildContext context,
  2. String msg
)

Implementation

error(BuildContext context, String msg) {
  var fn = _onError;
  fn(context, msg);
}