String类型参数
String? stringArgument(String? argKey) { final arg = argument(argKey); if (arg == null) { return null; } return arg.toString(); }