infoCustom method
Implementation
@override
Future<InfoCustomReturnModel?> infoCustom() async {
final version = await methodChannel.invokeMethod<String?>('infoCustom');
return InfoCustomReturnModel.fromJson(version ?? '{}');
}
@override
Future<InfoCustomReturnModel?> infoCustom() async {
final version = await methodChannel.invokeMethod<String?>('infoCustom');
return InfoCustomReturnModel.fromJson(version ?? '{}');
}