ClosureObject constructor

ClosureObject({
  1. Function? closure,
  2. Object? param,
})

Implementation

ClosureObject({
  this.closure,
  this.param,
});