convert method

  1. @override
GpsPoint convert(
  1. List<int> bytes, [
  2. int start = 0,
  3. int? end
])
override

The convert method cannot be called, because bytes may generate any number of GpsPoint entities, which can therefore not be returned as one single result.

Implementation

@override
GpsPoint convert(List<int> bytes, [int start = 0, int? end]) {
  // This method doesn't really make sense, because the input may end up
  // generating zero, one or more than one point.
  throw UnimplementedError();
}