UpdateParagraphStyleRequest.fromJson constructor

UpdateParagraphStyleRequest.fromJson(
  1. Map json_
)

Implementation

UpdateParagraphStyleRequest.fromJson(core.Map json_)
  : this(
      fields: json_['fields'] as core.String?,
      paragraphStyle:
          json_.containsKey('paragraphStyle')
              ? ParagraphStyle.fromJson(
                json_['paragraphStyle']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      range:
          json_.containsKey('range')
              ? Range.fromJson(
                json_['range'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );