buttons property
Implementation
@override
ContextWidgetList get buttons => (final context) => [
BlurButton(
caption: yesCaption,
onClick: () {
yesCallback();
Navigator.pop(context);
}
).niku
..bottom = 15
..right = yesPadding,
BlurButton(
caption: noCaption,
onClick: () {
noCallback();
Navigator.pop(context);
}
).niku
..bottom = 15
..right = 30
];