isSplitEquallyEnabled property

bool get isSplitEquallyEnabled

Whether the "Split Equally" chip is enabled on ReconciliationScreen. Reads the system-split-equally-enabled enterprise config flag. Defaults to true — the feature is on unless explicitly disabled.

Implementation

bool get isSplitEquallyEnabled {
  final value = _configService.getBoolValue(
    key: 'system-split-equally-enabled',
    defaultValue: true,
  );
  _logger.info(this, 'config resolved: system-split-equally-enabled=$value');
  return value;
}