func1 method
Implementation
Future<String> func1(
  String string,
  int i,
  double d, {
  required int arg0,
  required double arg1,
}) async {
  debugPrint('CallerWrapper: func1($instanceHash)');
  return caller.func1(string, i, d, arg0: arg0, arg1: arg1);
}