getAuthenticationDtoFromJson static method

AuthenticationDto getAuthenticationDtoFromJson(
  1. Map<String, dynamic> jo,
  2. SchemaMetaData smdSys
)

Implementation

static AuthenticationDto getAuthenticationDtoFromJson(Map<String, dynamic> jo, SchemaMetaData smdSys) {
  AuthenticationDto authenticationDto = AuthenticationDto.sep(
      jo["new_records"],
      jo["server_ts"],
      Warden.getWardenType(jo["warden"]),
      smdSys);
  return authenticationDto;
}