Proc<I> constructor

const Proc<I>(
  1. void f(), {
  2. String? name,
})

Implementation

const Proc(this.f, {String? name}) : super(name);