Is there possible unit testing in flutter SDK(Plugin) wrapper dart side?

I created flutter Plugin and I write the unit test case in wrappers side using method channel but here unit test case does not get the result from android/iOS getting time out

Could you clarify what you’re trying to do?

Do you want unit tests for native code or dart code? For native code its common to have tests in the native language that are independent of dart, and you usually mock the native code result for the dart side unit test

Yes I want to clarify