empty method
Implementation
Widget empty({String message = 'No data found'}) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.inbox_outlined, size: 64, color: Colors.grey),
const SizedBox(height: 8),
Text(message, style: const TextStyle(color: Colors.grey)),
],
),
);
}