toDebugString method
Implementation
String toDebugString() {
final props = <String>[];
if (padding != null) props.add('padding: $padding');
if (margin != null) props.add('margin: $margin');
if (color != null) props.add('color: $color');
if (height != null) props.add('height: $height');
if (width != null) props.add('width: $width');
if (size != null) props.add('size: $size');
if (radius != null) props.add('radius: $radius');
if (border != null) props.add('border: $border');
if (opacity != null) props.add('opacity: $opacity');
if (visibility != null) props.add('visibility: $visibility');
return 'AntdKitStyle{${props.join(', ')}}';
}