GroupApplicationResponseResponse constructor

GroupApplicationResponseResponse({
  1. GroupApplicationResponse? response,
  2. PlatformErrorCodes? errorCode,
  3. int? throttleSeconds,
  4. String? errorStatus,
  5. String? message,
  6. Map<String, String>? messageData,
  7. String? detailedErrorTrace,
})

Implementation

GroupApplicationResponseResponse({
	GroupApplicationResponse? response,
	PlatformErrorCodes? errorCode,
	int? throttleSeconds,
	String? errorStatus,
	String? message,
	Map<String, String>? messageData,
	String? detailedErrorTrace,
}):super(
	response:response,
	errorCode:errorCode,
	throttleSeconds:throttleSeconds,
	errorStatus:errorStatus,
	message:message,
	messageData:messageData,
	detailedErrorTrace:detailedErrorTrace,
);