JObjectSyncCallMethod extension

call extension simplify call function don't need return type's signature when calling native method

on

Methods

callArrayListMethodSync<E>(String methodName, {List? args, List<String>? assignedSignature}) List<E>?
call native method which return array list
callBoolMethodSync(String methodName, {List? args, List<String>? assignedSignature}) bool
call native method which return bool
callByteBufferMethodSync(String methodName, {List? args, List<String>? assignedSignature}) NativeByte?
call native method which return DirectByteBuffer
callByteMethodSync(String methodName, {List? args, List<String>? assignedSignature}) int
call native method which return byte
callCharMethodSync(String methodName, {List? args, List<String>? assignedSignature}) int
call native method which return char
callDoubleMethodSync(String methodName, {List? args, List<String>? assignedSignature}) double
call native method which return double
callFloatMethodSync(String methodName, {List? args, List<String>? assignedSignature}) double
call native method which return float
callHashMapMethodSync<K, V>(String methodName, {List? args, List<String>? assignedSignature}) Map<K, V>?
call native method which return hash map
callHashSetMethodSync<E>(String methodName, {List? args, List<String>? assignedSignature}) Set<E>?
call native method which return hash set
callIntMethodSync(String methodName, {List? args, List<String>? assignedSignature}) int
call native method which return int
callListMethodSync<E>(String methodName, {List? args, List<String>? assignedSignature}) List<E>?
call native method which return list
callLongMethodSync(String methodName, {List? args, List<String>? assignedSignature}) int
call native method which return long
callMapMethodSync<K, V>(String methodName, {List? args, List<String>? assignedSignature}) Map<K, V>?
call native method which return map
callObjectMethodSync<T extends JObject>(String methodName, {List? args, List<String>? assignedSignature}) → dynamic
callSetMethodSync<E>(String methodName, {List? args, List<String>? assignedSignature}) Set<E>?
call native method which return set
callShortMethodSync(String methodName, {List? args, List<String>? assignedSignature}) int
call native method which return short
callStringMethodSync(String methodName, {List? args, List<String>? assignedSignature}) String?
call native method which return string
callVoidMethodSync(String methodName, {List? args, List<String>? assignedSignature}) → void
call native method which return void