VersionProperty constructor

VersionProperty({
  1. String minVersion = "2.0",
  2. String? maxVersion,
})

Implementation

VersionProperty({
  String minVersion = "2.0",
  String? maxVersion,
}) : super(
        "VERSION",
        TextValue(
          "$minVersion${maxVersion == null ? "" : ";$maxVersion"}",
        ),
      );