sendStaticGet<T> static method

Future<T> sendStaticGet<T>(
  1. String className,
  2. String property
)

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;
}