ExprNot.fromJson constructor

ExprNot.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ExprNot.fromJson(Map<String, Object?> json) {
  return ExprNot(
    Expr.fromJson(json['arg'] as Map<String, Object?>),
  );
}