imageSize property

String get imageSize

Implementation

String get imageSize {
  if (width != null && height != null) {
    return " width=$width height=$height";
  }
  if (width != null) {
    return " width=$width";
  }
  if (height != null) {
    return " height=$height";
  }
  return "";
}