copyWith method
Implementation
InitResultEntity copyWith({
bool? success,
int? errorCode,
String? errorMsg,
}) =>
InitResultEntity(
success: success ?? this.success,
errorCode: errorCode ?? this.errorCode,
errorMsg: errorMsg ?? this.errorMsg,
);