AssertTruef function

void AssertTruef(
  1. bool b,
  2. String format,
  3. List args
)

Implementation

void AssertTruef(bool b, String format, List<dynamic> args) {
  if (!b) {
    // TODO: log.Fatalf("%+v", errors.Errorf(format, args...))
    throw format;
  }
}