Runnable_Script constructor

Runnable_Script({
  1. String? path,
  2. String? text,
})

Implementation

factory Runnable_Script({
  $core.String? path,
  $core.String? text,
}) {
  final $result = create();
  if (path != null) {
    $result.path = path;
  }
  if (text != null) {
    $result.text = text;
  }
  return $result;
}