webName property
String?
get
webName
Returns the Web SDK pageLayout string for this layout mode.
Implementation
String? get webName {
switch (this) {
case PageLayoutMode.double:
return 'DOUBLE';
case PageLayoutMode.automatic:
return 'AUTOMATIC';
case PageLayoutMode.single:
return 'SINGLE';
}
}