Sign constructor

Sign({
  1. required SignSymbol box,
  2. required List<SignSymbol> symbols,
})

Constructor for Sign class.

box: SignSymbol representing the box of the sign. symbols: List of SignSymbol representing other symbols in the sign.

Implementation

Sign({required this.box, required this.symbols});