toProto method
SatShapeDef_Select
toProto()
Implementation
SatShapeDef_Select toProto() {
return SatShapeDef_Select(
tablename: tablename,
where: where,
include: include
?.map(
(e) => SatShapeDef_Relation(
foreignKey: e.foreignKey,
select: e.select.toProto(),
),
)
.toList(),
);
}