SimpleCell.createImageCell constructor

SimpleCell.createImageCell(
  1. String content,
  2. String imageWidth,
  3. String imageHeight
)

Implementation

SimpleCell.createImageCell(
    String content, String imageWidth, String imageHeight)
    : super('SimpleCell') {
  final imageElement = ImageElement(src: content);
  imageElement.style
    ..width = imageWidth
    ..height = imageHeight
    ..border = '1px solid black';
  nodeRoot = DivElement();
  nodeRoot.children.add(imageElement);
}