isOpen<T> method

bool isOpen<T>(
  1. String boxKey
)

Returns if box is open

Implementation

bool isOpen<T>(String boxKey){
  return openBoxes[boxKey] != null;
}