props property
Convert size attributes to CSS styles.
Implementation
@override
Map<String, String> get props => {
'width': ?width?.cssText,
'height': ?height?.cssText,
'min-width': ?minWidth?.cssText,
'min-height': ?minHeight?.cssText,
'max-width': ?maxWidth?.cssText,
'max-height': ?maxHeight?.cssText,
};