main.dart 192 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import 'package:get_instance/get_instance.dart'; void main() { Get.put(Foo()); final foo = Get.find<Foo>(); final foo2 = Get.find<Foo>(); print(foo == foo2); // true } class Foo {}