Status.fromRef constructor

Status.fromRef(
  1. Status data
)

Implementation

factory Status.fromRef(lib.Status data) {
  return Status(
    game: data.game,
    round: data.round,
    turn: data.turn,
    hand: data.hand,
    floor: data.floor,
    seed: data.seed.elements.toList(),
  );
}