startNormalFlow method
Implementation
@override
Future<KycResult?> startNormalFlow(EkycConfig config) async {
config.sdkType = SdkType.NORMAL;
Map<dynamic, dynamic> rawResult = await methodChannel.invokeMethod('startEkyc', config.toJson());
return KycResult.fromJson(convert(rawResult));
}