AuthDto.fromJson constructor

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

Creates an AuthDto instance from a JSON object.

Parameters:

  • json – A map representing a JSON object.

Returns an AuthDto instance.

Implementation

factory AuthDto.fromJson(Map<String, dynamic> json) =>
    _$AuthDtoFromJson(json);