Input$ObjectKey constructor
Implementation
factory Input$ObjectKey({
required String address,
int? atCheckpoint,
int? rootVersion,
int? version,
}) => Input$ObjectKey._({
r'address': address,
if (atCheckpoint != null) r'atCheckpoint': atCheckpoint,
if (rootVersion != null) r'rootVersion': rootVersion,
if (version != null) r'version': version,
});