isNullable abstract method

bool isNullable()

Returns true if the field is nullable.

Example

final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.isNullable())); // [true]

Implementation

bool isNullable();