AndroidNavigationBar constructor

const AndroidNavigationBar({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. required Color iconColor,
  5. required Color color,
  6. double cornerRadius = 0.0,
})

Implementation

const AndroidNavigationBar({
  Key? key,
  required this.height,
  required this.width,
  required this.iconColor,
  required this.color,
  this.cornerRadius = 0.0,
}) : super(key: key);