FFSQLiteColumn constructor

FFSQLiteColumn({
  1. FFIdentifier? identifier,
  2. FFParameter? type,
})

Implementation

factory FFSQLiteColumn({
  FFIdentifier? identifier,
  FFParameter? type,
}) {
  final result = create();
  if (identifier != null) result.identifier = identifier;
  if (type != null) result.type = type;
  return result;
}