TextSearchRF constructor

const TextSearchRF({
  1. Key? key,
  2. required double Height,
  3. required String Title,
  4. required MapControllerRF Controller,
  5. VoidCallback? OnTap,
  6. double Radius = 32,
  7. double Width = 300,
  8. Icon icon = const Icon(Icons.search, size: 24),
  9. TextStyle Style = const TextStyle(fontSize: 20, color: Colors.black, fontWeight: FontWeight.bold),
  10. Color color = Colors.white,
})

Implementation

const TextSearchRF(
    {super.key,
    required this.Height,
    required this.Title,
    required this.Controller,
    this.OnTap,
    this.Radius = 32,
    this.Width = 300,
    this.icon = const Icon(
      Icons.search,
      size: 24,
    ),
    this.Style = const TextStyle(
        fontSize: 20, color: Colors.black, fontWeight: FontWeight.bold),
    this.color = Colors.white});