BooleanRule.fromJson constructor
BooleanRule.fromJson(
- Map json_
Implementation
BooleanRule.fromJson(core.Map json_)
: this(
condition: json_.containsKey('condition')
? BooleanCondition.fromJson(
json_['condition'] as core.Map<core.String, core.dynamic>)
: null,
format: json_.containsKey('format')
? CellFormat.fromJson(
json_['format'] as core.Map<core.String, core.dynamic>)
: null,
);