getJsonableProperty__ method

Future getJsonableProperty__(
  1. int propertyKey
)

获取添加字段的jsonable值

Implementation

Future<dynamic> getJsonableProperty__(int propertyKey) async {
  assert(propertyKey > 0);
  return kMethodChannel.invokeMethod('PlatformService::getJsonableProperty', {
    '__this__': this,
    'propertyKey': propertyKey,
  });
}