DeployedBase constructor

DeployedBase({
  1. required BaseCard card,
  2. int damage = 0,
})

Creates a deployed base with the given properties.

Errors

This class is not intended to be used with user-provided input, and as such does not provide any error handling. If any of the fields are invalid, an error will be thrown.

Implementation

factory DeployedBase({
  required BaseCard card,
  int damage = 0,
}) {
  return DeployedBase._(
    card: card,
    damage: damage,
  );
}