Location.fromRawJson constructor

Location.fromRawJson(
  1. String str
)

Implementation

factory Location.fromRawJson(String str) => Location.fromJson(
      json.decode(str) as Map<String, dynamic>,
    );