sendStaticGet<T> static method
Get static property
Implementation
static Future<T> sendStaticGet<T>(String className, String property) async {
final messageClient = getGlobalMessageClient();
final result = await messageClient.sendVarGet(
className,
property,
);
final decoded = messageClient.proto.decodeArg(result.msg);
return decoded;
}