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