SelfLinkDTO.fromJson constructor

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

Implementation

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