OrgDataUpdateError constructor

OrgDataUpdateError({
  1. required String orgId,
  2. bool log = kDebugMode,
})

Implementation

OrgDataUpdateError({
  required String orgId,
  bool log = kDebugMode,
}) : super(
        message: 'Failed to update org with id: $orgId',
        stackTrace: StackTrace.current,
      );