Type.ofFuture constructor

Type.ofFuture(
  1. Type type, {
  2. bool nullable = false,
})

Implementation

Type.ofFuture(Type type, {this.nullable = false})
    : name = 'Future',
      generics = [type],
      super();