Filter.fromJson constructor

Filter.fromJson(
  1. Map json_
)

Implementation

Filter.fromJson(core.Map json_)
    : this(
        eventType: (json_['eventType'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );