SimpleEditPage constructor

const SimpleEditPage({
  1. Key? key,
  2. required String title,
  3. required String label,
  4. required String initialValue,
  5. int maxLines = 1,
  6. int? maxLength,
})

Implementation

const SimpleEditPage({
  super.key,
  required this.title,
  required this.label,
  required this.initialValue,
  this.maxLines = 1,
  this.maxLength,
});