PRFNavigationTile constructor

const PRFNavigationTile({
  1. required String title,
  2. required String assetPath,
  3. required VoidCallback onTap,
  4. Key? key,
  5. double assetHeight = 56,
  6. bool isNeutralCard = false,
})

Implementation

const PRFNavigationTile({
  required this.title,
  required this.assetPath,
  required this.onTap,
  super.key,
  this.assetHeight = 56,
  this.isNeutralCard = false,
});