status static method

Status status(
  1. GameRef g
)

Get the status signals for a game

Implementation

static Status status(GameRef g) {
  ffi.Pointer<lib.Status> data = _core.status(g);
  final status = Status.fromRef(data.ref);
  malloc.free(data);
  return status;
}