shape method
Implementation
ButtonStyle shape(bool enable) {
return ElevatedButton.styleFrom(
elevation: 8,
backgroundColor: enable
? StyleMyFile.elevatedButtonEnable
: StyleMyFile.elevatedButtonDisable,
textStyle: buildTextStyle(enable),
shape: StyleMyFile.elevatedButtonShape);
}