iosExecutionParams property

  1. @JsonKey(name: "ios_execution_params", fromJson: Util.stringToMap, toJson: Util.mapToString)
Map<String, String>? iosExecutionParams
final

query string to be passed to custom scheme in iOS.

example:

If

androidExecParams: key1=value1&key2=value2
registered custom scheme: "kakao${kakao_app_key}://kakaolink"

Then, below scheme will be called.

"kakao${kakao_app_key}://kakaolink?key1=value1&key2=value"

These query paramters can then be parsed to direct users to appropriate screen.

Implementation

@JsonKey(
    name: "ios_execution_params",
    fromJson: Util.stringToMap,
    toJson: Util.mapToString)
final Map<String, String>? iosExecutionParams;