PhoenixEndOfSection constructor

const PhoenixEndOfSection({
  1. Key? key,
  2. required String label,
  3. Widget? logoImage,
  4. TextStyle? labelStyle = const TextStyle(color: Color(0xFFE0E0E0), fontWeight: FontWeight.w300, fontSize: 12),
})

Implementation

const PhoenixEndOfSection({
  Key? key,
  required this.label,
  this.logoImage,
  this.labelStyle = const TextStyle(
    color: Color(0xFFE0E0E0),
    fontWeight: FontWeight.w300,
    fontSize: 12,
  ),
}) : super(key: key);