multiLineString method

void multiLineString(
  1. String name, {
  2. bool nullable = false,
  3. String? defaultValue,
  4. String? comment,
  5. String? collation,
  6. String? expression,
  7. String? virtuality,
})

Implementation

void multiLineString(
  String name, {
  bool nullable = false,
  String? defaultValue,
  String? comment,
  String? collation,
  String? expression,
  String? virtuality,
}) {
  addColumn(
    name,
    'MULTILINESTRING',
    nullable: nullable,
    defaultValue: defaultValue,
    comment: comment,
    collation: collation,
    expression: expression,
    virtuality: virtuality,
  );
}