context property

TBlocstarLogicBaseContext context

Implementation

TBlocstarLogicBaseContext get context {
  if (_context != null) {
    return _context!;
  } else {
    throw Exception(
        "Context has not been initialized. Please ensure you do so in initializeAsync method of logic");
  }
}
void context=(TBlocstarLogicBaseContext value)

Implementation

set context(TBlocstarLogicBaseContext value) {
  _context = value;
}