6 lines
133 B
Dart
6 lines
133 B
Dart
import 'package:get/get.dart';
|
|
|
|
class QueryingTrackInfoProvider extends GetxController {
|
|
RxBool isQueryingTrackInfo = false.obs;
|
|
}
|