StringProperty constructor

StringProperty({
  1. required String name,
  2. required String value,
})

Implementation

StringProperty({
  required super.name,
  required super.value,
}) : super(type: PropertyType.string);