edgeInsets property

EdgeInsets? edgeInsets

Implementation

EdgeInsets? get edgeInsets {
  if (options.isStack == false &&
      (options.left != null ||
          options.top != null ||
          options.right != null ||
          options.bottom != null)) {
    return EdgeInsets.fromLTRB(options.left ?? 0, options.top ?? 0,
        options.right ?? 0, options.bottom ?? 0);
  }
  return null;
}