UpdateSectionStyleRequest.fromJson constructor

UpdateSectionStyleRequest.fromJson(
  1. Map json_
)

Implementation

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