Variable constructor

Variable({
  1. required String value,
})

Implementation

factory Variable({
  required String value,
}) =>
    PythonFfiDart.instance.importClass(
      "packaging.markers",
      "Variable",
      Variable.from,
      <Object?>[
        value,
      ],
      <String, Object?>{},
    );