TableCellBorder.fromJson constructor
      
      TableCellBorder.fromJson(
    
    
- Map json_
Implementation
TableCellBorder.fromJson(core.Map json_)
  : this(
      color:
          json_.containsKey('color')
              ? OptionalColor.fromJson(
                json_['color'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      dashStyle: json_['dashStyle'] as core.String?,
      width:
          json_.containsKey('width')
              ? Dimension.fromJson(
                json_['width'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );