Statefile.fromJson constructor

Statefile.fromJson(
  1. Map json_
)

Implementation

Statefile.fromJson(core.Map json_)
    : this(
        signedUri: json_.containsKey('signedUri')
            ? json_['signedUri'] as core.String
            : null,
      );