PayEngine constructor

const PayEngine({
  1. Key? key,
  2. required String type,
  3. required PayEngineConfig config,
  4. required Map<String, String> params,
  5. dynamic onEvent(
    1. Map<String, dynamic>
    )?,
})

Implementation

const PayEngine(
    {Key? key,
    required this.type,
    required this.config,
    required this.params,
    this.onEvent})
    : super(key: key);