removeInternalFieldValue method

void removeInternalFieldValue(
  1. String name, {
  2. required bool isSetState,
})

Implementation

void removeInternalFieldValue(
  String name, {
  required bool isSetState,
}) {
  _instantValue.remove(name);
  if (isSetState) {
    setState(() {});
  }
}