Deblock.fromJson constructor
Deblock.fromJson(
- Map json_
Implementation
Deblock.fromJson(core.Map json_)
: this(
enabled: json_.containsKey('enabled')
? json_['enabled'] as core.bool
: null,
strength: json_.containsKey('strength')
? (json_['strength'] as core.num).toDouble()
: null,
);