jsonUriString function

Uri jsonUriString(
  1. JsonReader reader
)

Builds a Uri from a JSON string read from reader.

Implementation

Uri jsonUriString(JsonReader reader) => Uri.parse(reader.expectString());