ListMatcher.fromJson constructor

ListMatcher.fromJson(
  1. Map json_
)

Implementation

ListMatcher.fromJson(core.Map json_)
    : this(
        oneOf: json_.containsKey('oneOf')
            ? ValueMatcher.fromJson(
                json_['oneOf'] as core.Map<core.String, core.dynamic>)
            : null,
      );