PhoenixMore constructor

const PhoenixMore({
  1. Key? key,
  2. VoidCallback? onTap,
  3. TextStyle? titleStyle = const TextStyle(color: Color(0xFF00B3AF), fontSize: 16, fontWeight: FontWeight.w500),
  4. required String title,
})

Implementation

const PhoenixMore({
  Key? key,
  this.onTap,
  this.titleStyle = const TextStyle(
    color: Color(0xFF00B3AF),
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
  required this.title,
}) : super(key: key);