I try refactor my flutter app and start using GetX library. I using library "flutter_form_builder", and some methods here need BuildContext argument. For example:
String? Function(T?) FormBuilderValidators.equal<T>(
BuildContext context,
Object value, {
String? errorText,
})
I try add as argument Get.context, but Get.context type is BuildContext?
not BuildContext
Any idea how to solve it?