10 lines
208 B
Dart
10 lines
208 B
Dart
import 'package:get/get.dart';
|
|
|
|
import 'select_person_controller.dart';
|
|
|
|
class SelectPersonBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut(() => SelectPersonController());
|
|
}
|
|
} |