MicrosoftAccountProfile constructor

const MicrosoftAccountProfile({
  1. required String accessToken,
  2. required String refreshToken,
  3. required DateTime expiresAt,
  4. required String email,
  5. required String username,
  6. required String id,
})

Implementation

const MicrosoftAccountProfile({
  required this.accessToken,
  required this.refreshToken,
  required this.expiresAt,
  required this.email,
  required this.username,
  required this.id,
});