11 lines
248 B
Dart
Executable File
11 lines
248 B
Dart
Executable File
import 'package:get/get.dart';
|
|
import '../controllers/kr_webview_controller.dart';
|
|
|
|
class KRWebViewBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut<KRWebViewController>(
|
|
() => KRWebViewController(),
|
|
);
|
|
}
|
|
} |