app property

Angel app
inherited

Implementation

Angel get app {
  if (_app == null) {
    throw ArgumentError("Angel is not initialized");
  }
  return _app!;
}
void app=(Angel angel)
inherited

Implementation

set app(Angel angel) {
  _app = angel;
}