width property

double? get width

Returns the width as a double

Implementation

double? get width {
  final value = attributes?['width'] ?? styles?['width'];
  return value != null ? StyleParser.parseSize(value) : null;
}