runContext method

  1. @protected
void runContext(
  1. void handle(
    1. BuildContext context
    )
)

Implementation

@protected
void runContext(void Function(BuildContext context) handle) {
  if (!_disposed) {
    handle(_context);
  }
}