extension.dart 165 Bytes
Newer Older
张国庆's avatar
张国庆 committed
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;
}