buildMessage method
Implementation
Widget buildMessage() {
if (info.message.isEmpty) return const Row();
return Padding(
padding: const EdgeInsets.only(top: 6),
child: Text('${info.message}',
style: const TextStyle(
fontSize: 14, color: Color(0xFF999999), height: 1.3),
maxLines: 3),
);
}