AdresAramaSyf constructor

const AdresAramaSyf({
  1. Key? key,
  2. required String aranan,
  3. required String kod,
  4. required dynamic secim(
    1. Map<String, dynamic>
    ),
  5. Color barRengi = Colors.blue,
  6. Color yaziRengi = Colors.white,
})

Implementation

const AdresAramaSyf({
  Key? key,
  required this.aranan,
  required this.kod,
  required this.secim,
  this.barRengi = Colors.blue,
  this.yaziRengi = Colors.white,
}) : super(key: key);