CardRowTwoItems.fromJson constructor

CardRowTwoItems.fromJson(
  1. Map json_
)

Implementation

CardRowTwoItems.fromJson(core.Map json_)
  : this(
      endItem: json_.containsKey('endItem')
          ? TemplateItem.fromJson(
              json_['endItem'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      startItem: json_.containsKey('startItem')
          ? TemplateItem.fromJson(
              json_['startItem'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );