Type Alias TFuseJustificationHandler

TFuseJustificationHandler: (() => Promise<boolean>)

Invoked to handle when permission justification is necessary.

This is an android concept, so it will only be invoked on Android devices, as iOS has justification text embedded into the actual permission prompt.

User dialog should be displayed to explain why the app wants to use the permission. Android recommends giving the user the ability to accept or deny at this time, if the user deny, then resolve the promise will false.

Return true if the permission request should proceed.