tableBaseString method

dynamic tableBaseString(
  1. String name,
  2. String columnId
)

Implementation

tableBaseString(String name, String columnId) {
  return '''
      create table $name (
      $columnId integer primary key autoincrement,
    ''';
}