• This project
    • Loading...
  • Sign in

flutter_package / auto_track_plugin

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • auto_track_plugin
  • lib
  • auto_track
  • click
  • element_key.dart
  • add: first commit · f8f6ee00
    f8f6ee00 Browse Files
    Dubhe authored 2024-02-24 19:57:39 +0800
element_key.dart 268 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import 'package:flutter/widgets.dart';

class AutoTrackElementKey extends Key {
  const AutoTrackElementKey(this.name, {
    this.ignore = false
  }) : super.empty();

  final String name;
  final bool ignore;

  @override
  String toString() {
    return name;
  }
}