UXPFieldGPS constructor

const UXPFieldGPS({
  1. Key? key,
  2. required String value,
  3. required String labelText,
  4. Function? onChange,
  5. String? label,
  6. String? description,
})

Implementation

const UXPFieldGPS({
  Key? key,
  required this.value,
  required this.labelText,
  this.onChange,
  this.label,
  this.description,
}) : super(key: key);