stringArgument method

String? stringArgument(
  1. String? argKey
)

String类型参数

Implementation

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