Expr.fromJson constructor
Implementation
factory Expr.fromJson(Map<String, dynamic> json) {
return Expr(
expression: json['expression'] ?? '',
title: json['title'] ?? '',
description: json['description'] ?? '',
location: json['location'] ?? '',
);
}