DocsDestination.fromJson constructor

DocsDestination.fromJson(
  1. Map json_
)

Implementation

DocsDestination.fromJson(core.Map json_)
  : this(
      document: json_['document'] as core.String?,
      exportUri: json_['exportUri'] as core.String?,
    );