FetchBlobResponse.fromJson constructor

FetchBlobResponse.fromJson(
  1. Map json_
)

Implementation

FetchBlobResponse.fromJson(core.Map json_)
  : this(
      content: json_['content'] as core.String?,
      sha: json_['sha'] as core.String?,
    );