copyWith method
Implementation
ApiEnvelope copyWith(
{bool? success, String? message, Map<String, dynamic>? raw}) {
return ApiEnvelope(
success: success ?? this.success,
message: message ?? this.message,
raw: raw ?? this.raw);
}