TableCellBackgroundFill.fromJson constructor

TableCellBackgroundFill.fromJson(
  1. Map json_
)

Implementation

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