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