launch method

Future<Map?> launch({
  1. dynamic onResultCallBack(
    1. dynamic
    )?,
})

Implementation

Future<Map?> launch({Function(dynamic)? onResultCallBack}) {
  return MethodChannelUpiConnect().launchIntent(
    intentDetails: this,
    onResponse: onResultCallBack,
  );
}