TableBorderProperties.fromJson constructor

TableBorderProperties.fromJson(
  1. Map json_
)

Implementation

TableBorderProperties.fromJson(core.Map json_)
    : this(
        dashStyle: json_.containsKey('dashStyle')
            ? json_['dashStyle'] as core.String
            : null,
        tableBorderFill: json_.containsKey('tableBorderFill')
            ? TableBorderFill.fromJson(json_['tableBorderFill']
                as core.Map<core.String, core.dynamic>)
            : null,
        weight: json_.containsKey('weight')
            ? Dimension.fromJson(
                json_['weight'] as core.Map<core.String, core.dynamic>)
            : null,
      );