CustomLevel.fromJson constructor

CustomLevel.fromJson(
  1. Map json_
)

Implementation

CustomLevel.fromJson(core.Map json_)
  : this(
      expr: json_.containsKey('expr')
          ? Expr.fromJson(
              json_['expr'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );