GetBlobOutput.fromJson constructor

GetBlobOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GetBlobOutput.fromJson(Map<String, dynamic> json) {
  return GetBlobOutput(
    content: _s.decodeUint8List(json['content']! as String),
  );
}