AssetPropertyTimestamp.fromJson constructor
Implementation
factory AssetPropertyTimestamp.fromJson(Map<String, dynamic> json) {
return AssetPropertyTimestamp(
timeInSeconds: json['timeInSeconds'] as String,
offsetInNanos: json['offsetInNanos'] as String?,
);
}