build method
- dynamic context
Implementation
@override
Widget build(BuildContext context) {
return IconButton(
icon: const Icon(Icons.file_download, size: 44),
onPressed: _onPressed,
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
),
);
}