PushTokenResponse constructor

const PushTokenResponse({
  1. required String token,
  2. required DateTime expiresAt,
  3. required List<String> channels,
})

Implementation

const PushTokenResponse({
  required this.token,
  required this.expiresAt,
  required this.channels,
});