AssetPropertyTimestamp.fromJson constructor

AssetPropertyTimestamp.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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