height property

double? get height

Returns the height as a double

Implementation

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