removes method

Set<K?> removes(
  1. Map<K, dynamic> newData
)

Implementation

Set<K?> removes(Map<K, dynamic> newData) {
  final currKeys = this.keys.toSet();
  return currKeys.difference(newData.keys.toSet());
}