edgeToJson static method

List edgeToJson(
  1. EdgeInsets edgeInset
)

Implementation

static List<dynamic> edgeToJson(EdgeInsets edgeInset) {
  return [edgeInset.left, edgeInset.top, edgeInset.right, edgeInset.bottom];
}