Input$AuthenticationInput constructor

Input$AuthenticationInput({
  1. required String username,
  2. required String password,
})

Implementation

factory Input$AuthenticationInput({
  required String username,
  required String password,
}) =>
    Input$AuthenticationInput._({
      r'username': username,
      r'password': password,
    });