thisPadding property

EdgeInsets? get thisPadding

Implementation

EdgeInsets? get thisPadding =>
    (this.decorationValue?.contentPadding is EdgeInsets? &&
            this.decorationValue?.contentPadding != null)
        ? this.decorationValue?.contentPadding as EdgeInsets
        : EdgeInsets.zero;