Footer.fromJson constructor

Footer.fromJson(
  1. Map json_
)

Implementation

Footer.fromJson(core.Map json_)
    : this(
        content: json_.containsKey('content')
            ? (json_['content'] as core.List)
                .map((value) => StructuralElement.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        footerId: json_.containsKey('footerId')
            ? json_['footerId'] as core.String
            : null,
      );