import'package:flutter/foundation.dart';import'package:flutter/services.dart';import'myhr_facescan_platform_interface.dart';/// An implementation of [MyhrFacescanPlatform] that uses method channels.classMethodChannelMyhrFacescanextendsMyhrFacescanPlatform{/// The method channel used to interact with the native platform.@visibleForTestingfinalmethodChannel=constMethodChannel('myhr_facescan');@overrideFuture<String?>getPlatformVersion()async{finalversion=awaitmethodChannel.invokeMethod<String>('getPlatformVersion');returnversion;}}