ResolutionId.fromJson constructor

ResolutionId.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ResolutionId.fromJson(Map<String, Object?> json) {
  return ResolutionId(
    id: json[r'id'] as String? ?? '',
  );
}