TableBorderFill.fromJson constructor

TableBorderFill.fromJson(
  1. Map json_
)

Implementation

TableBorderFill.fromJson(core.Map json_)
  : this(
      solidFill:
          json_.containsKey('solidFill')
              ? SolidFill.fromJson(
                json_['solidFill'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );