ResolvedType constructor

const ResolvedType({
  1. BasicType? type,
  2. List<TypeHint> hints = const [],
  3. bool? nullable = false,
  4. bool isArray = false,
})

Implementation

const ResolvedType(
    {this.type,
    this.hints = const [],
    this.nullable = false,
    this.isArray = false});