value property

EdgeInsets value
override

Builds attribute into widget propety

Implementation

EdgeInsets get value {
  return EdgeInsets.only(
    left: left ?? 0.0,
    right: right ?? 0.0,
    top: top ?? 0.0,
    bottom: bottom ?? 0.0,
  );
}