type property
String
get
type
Implementation
String get type {
final ctx = this;
if (ctx == null) {
return 'String';
} else if (ctx.INT() != null) {
return 'int';
} else if (ctx.DOUBLE() != null) {
return 'double';
} else if (ctx.BOOLEAN() != null) {
return 'bool';
}
return 'String';
}