rightAlign property
bool
get
rightAlign
Implementation
bool get rightAlign => _rightAlign;
Whether the input contents should be always right aligned.
Default value is false
.
Implementation
@Input()
set rightAlign(bool? value) {
_rightAlign = value ?? false;
// Possibly set by a directive and not a template. So default change
// detection doesn't work without calling markForCheck.
_changeDetector.markForCheck();
}