Storage.remove constructor

Storage.remove(
  1. String name, {
  2. bool autoNamespace = true,
  3. required String? key,
})

Removes certain Nbt Data.

Implementation

Storage.remove(
  this.name, {
  this.autoNamespace = true,
  required this.key,
})  : assert(key != null),
      _type = _StorageType.remove;