Type.ofSet constructor

Type.ofSet({
  1. Type? genericType,
  2. bool nullable = false,
})

Implementation

Type.ofSet({Type? genericType, this.nullable = false})
    : name = 'Set',
      generics = genericType == null ? const [] : [genericType],
      super();