SmartInsets.symmetric constructor

SmartInsets.symmetric({
  1. SmartSpace? vertical,
  2. SmartSpace? horizontal,
})

Implementation

SmartInsets.symmetric({SmartSpace? vertical, SmartSpace? horizontal})
    : super.symmetric(vertical: vertical?.value ?? 0, horizontal: horizontal?.value ?? 0);