gameRef property

Implementation

BonfireGameInterface get gameRef {
  if (component == null) {
    throw StateError(
      'Cannot find reference $BonfireGameInterface in the component',
    );
  }
  return component!.gameRef;
}