removeData method

NovelStateSnapshot removeData(
  1. String key
)

Implementation

NovelStateSnapshot removeData(String key) {
  final copy = Map<String, dynamic>.from(variables);
  copy[key] = null;
  return copyWith(variables: copy);
}