TableBorderCell.fromJson constructor

TableBorderCell.fromJson(
  1. Map json_
)

Implementation

TableBorderCell.fromJson(core.Map json_)
  : this(
      location:
          json_.containsKey('location')
              ? TableCellLocation.fromJson(
                json_['location'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      tableBorderProperties:
          json_.containsKey('tableBorderProperties')
              ? TableBorderProperties.fromJson(
                json_['tableBorderProperties']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );