extension.dart 165 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 import 'package:get/get.dart'; S? findOtherLogic<S>({String? tag}) { if (Get.isRegistered<S>(tag: tag)) { return Get.find<S>(tag: tag); } return null; }