delete method

void delete(
  1. String id
)

Implementation

void delete(String id) {
  if (_fields.containsKey(id)) {
    _fields.remove(id);
  }
}