titleButtonOk static method
Implementation
static Widget titleButtonOk(context, onPress) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: titleButton(
icon: Icons.check_circle,
onPress: () {
onPress?.call();
},
context: context),
);
}