SerchFieldPage constructor

SerchFieldPage({
  1. String barText = 'Buscar',
  2. bool showPersistenceButton = false,
  3. Widget? persistencePage,
  4. required Future<List<SearchFieldSource>> getSource(),
  5. Color colorWhite = Colors.white,
  6. Color colorPrimary = Colors.black,
})

Implementation

SerchFieldPage({
  this.barText = 'Buscar',
  this.showPersistenceButton = false,
  this.persistencePage,
  required this.getSource,
  this.colorWhite = Colors.white,
  this.colorPrimary = Colors.black,
});