Based On this thread I want to pass array of strings as argument lik this :
Object obj = new String[] {"Hello","Bye"};
channel.invokeMethod("foo",obj, new MethodChannel.Result(){
...
);
but it shows error :
Unsupported value: [Ljava.lang.String .
How can I do that?