fromJsonListString method Null safety

List<Location> fromJsonListString(
  1. String value
)

Creates Location from Json string

Implementation

static List<Location> fromJsonListString(String value) =>
    fromJsonList(jsonDecode(value));