getImgStyle method

ElementStyle? getImgStyle(
  1. Img img
)

Implementation

ElementStyle? getImgStyle(Img img) {
  if (_stylesData == null) {
    return null;
  }
  return _stylesData?.cssStyles![img.imgClass!]?.value;
}