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,
      );