create abstract method

void create(
  1. String tableName,
  2. void callback(
    1. Table table
    )
)

Implementation

void create(String tableName, void Function(Table table) callback);