tableSql static method

String tableSql([
  1. String? tableName
])

Implementation

static String tableSql([String? tableName]) => ""
    "CREATE TABLE IF NOT EXISTS `${tableName ?? _tableName}` ("
    "`avatar` TEXT PRIMARY KEY)";