throwError static method

void throwError(
  1. String msg
)

Implementation

static void throwError(String msg) {
  assert(() {
    throw new FlutterError('assert: ' + msg);
  }());
}