fromResponse static method

OtpEntity fromResponse({
  1. required GenerateCodeResponse response,
})

Implementation

static OtpEntity fromResponse({
  required GenerateCodeResponse response,
}) =>
    OtpEntity(
      codeLifetime: response.codeLifetime,
    );