SectionColumnProperties.fromJson constructor

SectionColumnProperties.fromJson(
  1. Map json_
)

Implementation

SectionColumnProperties.fromJson(core.Map json_)
  : this(
      paddingEnd: json_.containsKey('paddingEnd')
          ? Dimension.fromJson(
              json_['paddingEnd'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      width: json_.containsKey('width')
          ? Dimension.fromJson(
              json_['width'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );