BackgroundRemoval constructor

BackgroundRemoval({
  1. bool? fineEdges,
  2. List<ForegroundObject>? hints,
})

Implementation

BackgroundRemoval({bool? fineEdges, List<ForegroundObject>? hints}) {
  _fineEdges = fineEdges;
  _hints = hints;
}