get method Null safety

dynamic get(
  1. String key
)

Get the value for a key from storage namespace

Implementation

dynamic get(String key) {
  return box.read(key);
}