Context.fromJson constructor

Context.fromJson(
  1. Map json_
)

Implementation

Context.fromJson(core.Map json_)
    : this(
        rules: (json_['rules'] as core.List?)
            ?.map((value) => ContextRule.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );