fromJson static method

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

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(),
  );
}