toWKT method Null safety

String toWKT()

Converts the Feature to a WKT String. (Not actually possible, as a base feature has no geometry)

Implementation

String toWKT() {
  return 'Feature{properties: $properties}';
}