tryGetPastObject method
Implementation
Future<ObjectRead> tryGetPastObject(String id, int version,
{SuiObjectDataOptions? options}) async {
final data = await client.request('sui_tryGetPastObject', [id, version, options?.toJson()]);
return ObjectRead.fromJson(data);
}