fromJson static method

Uri fromJson(
  1. dynamic value
)

Returns a deserialized version of the UuidValue.

Implementation

static Uri fromJson(dynamic value) {
  if (value is Uri) return value;
  return Uri.parse(value as String);
}