EmbeddedImageObjectBuilder constructor

EmbeddedImageObjectBuilder({
  1. List<int>? bytes,
  2. int? componentCount,
  3. ComponentType? componentType,
  4. int? width,
  5. int? height,
})

Implementation

EmbeddedImageObjectBuilder({
  List<int>? bytes,
  int? componentCount,
  ComponentType? componentType,
  int? width,
  int? height,
})
    : _bytes = bytes,
      _componentCount = componentCount,
      _componentType = componentType,
      _width = width,
      _height = height;