setMethodCall method
Implementation
void setMethodCall(
List<String> methods, Function(dynamic arguments) callMethod) {
if (methods.isNotEmpty) {
for (String method in methods) {
_methodMap[method] = callMethod;
}
}
}
void setMethodCall(
List<String> methods, Function(dynamic arguments) callMethod) {
if (methods.isNotEmpty) {
for (String method in methods) {
_methodMap[method] = callMethod;
}
}
}