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