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