getCancelFlowConfig method
Implementation
@override
Future<Map<String, dynamic>?> getCancelFlowConfig() async {
final result = await methodChannel.invokeMethod<Map>('getCancelFlowConfig');
return result != null ? Map<String, dynamic>.from(result) : null;
}