fromJson static method

Point? fromJson(
  1. Map<String, dynamic>? json
)

Returns a new Point instance and imports its values from json if it's non-null, null if json is null.

Implementation

static Point? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return Point(
    latitude: json[r'latitude']?.toDouble(),
    longitude: json[r'longitude']?.toDouble(),
    srid: json[r'srid'],
  );
}