INNER CODE UNIT · Dart

TransientKey

boyan01/overlay_support · lib/src/overlay_keys.dart:61

class TransientKey<T> extends ValueKey<T> {
  const TransientKey(T value) : super(value);

  @override
  bool operator ==(other) {
    return other is TransientKey<T> && value == other.value;
  }

  @override
  int get hashCode => Object.hash(runtimeType, value);
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…