NiceProfileField constructor

const NiceProfileField({
  1. required String key,
  2. required String label,
  3. String? initialValue,
  4. IconData? icon,
  5. TextInputType? keyboardType,
  6. int? maxLines,
})

Implementation

const NiceProfileField({
  required this.key,
  required this.label,
  this.initialValue,
  this.icon,
  this.keyboardType,
  this.maxLines,
});