ExprNegate.fromJson constructor

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

Implementation

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