FileContentBuffer.fromJson constructor

FileContentBuffer.fromJson(
  1. Map json_
)

Implementation

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