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