getPlatformBECSForm function

BECSFormInterface getPlatformBECSForm(
  1. PayEngineConfig config
)

Returns the platform-specific BECS form for the given config.

The config parameter is an instance of PayEngineConfig that contains the necessary configuration for the form.

This function is used to get the platform-specific BECS form implementation.

Implementation

BECSFormInterface getPlatformBECSForm(PayEngineConfig config) {
  return BECSFormNative(config: config);
}