FFPostgresOrderBy constructor
FFPostgresOrderBy({
- FFIdentifier? fieldIdentifier,
- bool? ascending,
Implementation
factory FFPostgresOrderBy({
FFIdentifier? fieldIdentifier,
$core.bool? ascending,
}) {
final result = create();
if (fieldIdentifier != null) result.fieldIdentifier = fieldIdentifier;
if (ascending != null) result.ascending = ascending;
return result;
}