ShareResponse constructor

const ShareResponse({
  1. required String shareId,
  2. String? activityType,
  3. required bool isCompleted,
  4. required Object error,
  5. Object? result,
})

Implementation

const ShareResponse(
    {required this.shareId,
    this.activityType,
    required this.isCompleted,
    required this.error,
    this.result});