isNullable abstract method
Returns true if the field is nullable.
Example
final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.isNullable())); // [true]
Implementation
bool isNullable();
Returns true if the field is nullable.
final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.isNullable())); // [true]
bool isNullable();