OkHiEvent constructor

OkHiEvent({
  1. required String resultType,
  2. required String methodCall,
  3. OkHiUser? user,
  4. OkHiLocation? location,
  5. String? code,
  6. String? message,
})

Implementation

OkHiEvent({
  required this.resultType,
  required this.methodCall,
  this.user,
  this.location,
  this.code,
  this.message,
});