dartType property

String get dartType

Implementation

String get dartType {
  if (enumValues.isNotEmpty) {
    return postgresFormat.split(".").last.toUpperCase().replaceAll('"', "");
  }
  return postgresFormatToDartType(postgresFormat).type.replaceAll('"', "");
}