getBuildContext method

BuildContext getBuildContext ()
inherited

returns current BuildContext for SamModel

This is only valid once the SamModel has been injected with method samInject into the widget tree.

Implementation

BuildContext getBuildContext() {
  assert(this._si != null);
  assert(this._si._context != null);
  return this._si._context;
}