getColumnExpression static method
Implementation
static String getColumnExpression(
{required String name,
required String type,
required bool primary,
required bool nullable}) {
return '$name $type${primary ? ' PRIMARY KEY' : ''}${nullable ? '' : ' NOT NULL'}';
}