fromJson static method
Implementation
static MbxEdgeInsets fromJson(Map<String, dynamic> json) {
return MbxEdgeInsets(
top: json["top"].toDouble(),
left: json["left"].toDouble(),
bottom: json["bottom"].toDouble(),
right: json["right"].toDouble(),
);
}