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