CreateFooterRequest.fromJson constructor

CreateFooterRequest.fromJson(
  1. Map json_
)

Implementation

CreateFooterRequest.fromJson(core.Map json_)
  : this(
      sectionBreakLocation: json_.containsKey('sectionBreakLocation')
          ? Location.fromJson(
              json_['sectionBreakLocation']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      type: json_['type'] as core.String?,
    );