EchoBody constructor

EchoBody({
  1. required String clientId,
  2. required String token,
  3. String type = 'fcm',
})

Implementation

EchoBody({
  required this.clientId,
  required this.token,
  this.type = 'fcm',
});