Deblock.fromJson constructor

Deblock.fromJson(
  1. 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,
      );