FunctionMock constructor

FunctionMock({
  1. List<Arg>? args,
  2. String? function,
  3. Result? result,
})

Implementation

FunctionMock({
  this.args,
  this.function,
  this.result,
});