TetherColumnInfo constructor
TetherColumnInfo({})
Creates an instance of TetherColumnInfo.
Implementation
TetherColumnInfo({
required this.name,
required this.originalName,
String? localName,
required this.type,
required this.isNullable,
required this.isPrimaryKey,
required this.isUnique,
this.defaultValue,
this.comment,
this.isIdentity = false,
}) : localName = localName ?? _makeSafeDartIdentifier(originalName);