EgressFilter.fromJson constructor

EgressFilter.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory EgressFilter.fromJson(Map<String, dynamic> json) {
  return EgressFilter(
    type: (json['type'] as String).toEgressFilterType(),
  );
}