isSplitPaymentsEnabled property
bool
get
isSplitPaymentsEnabled
Whether the split payments feature is enabled via enterprise config.
Implementation
bool get isSplitPaymentsEnabled {
final value = _configService.getBoolValue(
key: 'system-split-payments-enabled',
defaultValue: false,
);
_logger.info(this, 'config resolved: system-split-payments-enabled=$value');
return value;
}