displayName property
String
get
displayName
Get the display name for the layout
Implementation
String get displayName {
switch (this) {
case ToastLayout.stack:
return 'Stack';
case ToastLayout.column:
return 'Column';
}
}