dependencies method
void
dependencies(
)
override
Implementation
@override
void dependencies() {
if (initialBinding != null) {
initialBinding!.dependencies();
}
/// The button logic instance, we must set it as permit logic in the app.
/// main logic of the MButtonController to make sure the Event is uniquely triggered.
/// that can avoid so many finger click different button in the same time
/// or many button crazy click.
Get.put(MButtonController(), permanent: true);
Get.put(MMediaLogic(onKeyboardZero: () {
MConfig.mKeyZeroEvent.value = MKeyZeroEvent();
}), permanent: true);
Get.put(MPickImageLogic(), permanent: true);
}