ProSlideImage.fromBase64 constructor

ProSlideImage.fromBase64(
  1. String encoded,
  2. int quality
)

Use this constructor when you have the Base 64 encoded slide image. This is sent with the Remote Control protocol

Implementation

ProSlideImage.fromBase64(String encoded, this.quality) {
  updateImage(encoded, quality: quality);
}