PicturesCollection constructor

PicturesCollection(
  1. Worksheet sheet
)

Create an instance of Pictures collection.

Implementation

PicturesCollection(Worksheet sheet) {
  _worksheet = sheet;
  _pictures = <Picture>[];
}