name property
String
get
name
Implementation
String get name {
switch (this) {
case WidgetProperty.toggleButtonState:
return 'toggleButtonState';
case WidgetProperty.contentOffsetX:
return 'contentOffsetX';
case WidgetProperty.contentOffsetY:
return 'contentOffsetY';
case WidgetProperty.className:
return 'Classname';
case WidgetProperty.enabled:
return 'Enabled';
case WidgetProperty.text:
return 'Text';
case WidgetProperty.textColor:
return 'TextColor';
case WidgetProperty.checked:
return 'checked';
case WidgetProperty.pressed:
return 'pressed';
case WidgetProperty.checkState:
return 'checkState';
case WidgetProperty.hasFocus:
return 'hasFocus';
case WidgetProperty.selectedItemText:
return 'selectedItemText';
case WidgetProperty.selectedItemIndex:
return 'selectedItemIndex';
case WidgetProperty.knownControlClass:
return 'KnownControlClass';
case WidgetProperty.selectionStart:
return 'SelectionStart';
case WidgetProperty.selectionText:
return 'SelectionText';
case WidgetProperty.selectionLength:
return 'SelectionLength';
case WidgetProperty.backgroundColor:
return 'BackgroundColor';
case WidgetProperty.containerType:
return 'ContainerType';
case WidgetProperty.top:
return 'Top';
case WidgetProperty.left:
return 'Left';
case WidgetProperty.width:
return 'Width';
case WidgetProperty.height:
return 'Height';
case WidgetProperty.screenY:
return 'ScreenY';
case WidgetProperty.screenX:
return 'ScreenX';
case WidgetProperty.visible:
return 'Visible';
case WidgetProperty.visibility:
return 'Visibility';
case WidgetProperty.id:
return 'Id';
case WidgetProperty.parentId:
return 'Parent';
case WidgetProperty.flutterElement:
return 'FlutterElement';
case WidgetProperty.value:
return 'Value';
case WidgetProperty.minValue:
return 'MinValue';
case WidgetProperty.maxValue:
return 'MaxValue';
case WidgetProperty.tabIndex:
return 'Index';
case WidgetProperty.selected:
return 'Selected';
case WidgetProperty.image:
return 'Image';
case WidgetProperty.title:
return 'Title';
case WidgetProperty.sliderCurrentValue:
return 'Value';
case WidgetProperty.caption:
return 'Caption';
case WidgetProperty.accessibilityLabel:
return 'AccessibilityLabel';
case WidgetProperty.accessibilityId:
return 'AccessibilityId';
}
}