SignedUri.fromJson constructor

SignedUri.fromJson(
  1. Map json_
)

Implementation

SignedUri.fromJson(core.Map json_)
  : this(
      file: json_['file'] as core.String?,
      uri: json_['uri'] as core.String?,
    );